'Declaration Public Overloads Function FillPage( _ ByVal startRecord As Integer, _ ByVal maxRecords As Integer, _ ByVal parameterValues() As Object _ ) As Integer
public int FillPage( int startRecord, int maxRecords, object[] parameterValues )
Parameters
- startRecord
- The number of the first row to retrieve. Value 0 means the first row, 1 means the second, and so on.
- maxRecords
- The maximum number of records to retrieve.
- parameterValues
- Used to fill the System.Data.IDbCommand.Parameters collection of the SelectCommand property.
Return Value
The number of rows successfully added to or refreshed in the DbDataTable. This does not include rows affected by statements that do not return rows.